home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2005 October / PCWOCT05.iso / Software / FromTheMag / XAMPP 1.4.14 / xampp-win32-1.4.14-installer.exe / xampp / mysql / mysql_uninstallservice.bat < prev   
DOS Batch File  |  2004-06-03  |  392b  |  20 lines

  1. @echo off
  2.  
  3. if "%OS%" == "Windows_NT" goto WinNT
  4.  
  5. :Win9X
  6. echo Don't be stupid! Win9x don't know Services
  7. echo Please use mysql_stop.bat instead
  8. goto exit
  9.  
  10. :WinNT
  11. echo now stopping MySQL when it runs
  12. net stop mysql
  13. echo Uninstalling MySql-Service
  14. bin\mysqld-nt --remove mysql
  15. if not exist %windir%\my.ini GOTO exit
  16. echo Remove %windir%\my.ini
  17. del %windir%\my.ini
  18.  
  19. :exit
  20. pause